home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Message Dialogs / time-of-day.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  63 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Time of day message
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Broadcast a different message on your visitors depending on the time of the day. The script distinguishes between morning, noon, afternoon, evening, night, and midnight.
  7. <!/DESCRIPTION> 
  8.  
  9. <!CATEGORY>messages<!/CATEGORY>
  10.  
  11. <!SCRIPT>
  12. <!-- START OF SCRIPT -->
  13. <script>
  14.  
  15. var Digital=new Date()
  16. var hours=Digital.getHours()
  17.  
  18. //Configure message below to your own.
  19. if (hours>=5&&hours<=11) //MESSAGE FOR MORNING
  20. document.write('<b>Welcome to our site. Good morning visitor.</b>')
  21. else if (hours==12) //MESSAGE FOR NOON
  22. document.write('<b>It is high noon. Thanks for dropping by!</b>')
  23. else if (hours>=13&&hours<=17) //MESSAGE FOR AFTERNOON
  24. document.write('<b>Good afternoon, and thanks for visiting.</b>')
  25. else if (hours>=18&&hours<=20) //MESSAGE FOR EVENING (6pm-8pm)
  26. document.write('<b>Good evening. Hope you\'re enjoying the gentle breeze</b>')
  27. else if (hours>=21&&hours<=11) //MESSAGE FOR NIGHT (9pm-11pm)
  28. document.write('<b>Glad to see you this time of the night.</b>')
  29. else //MESSAGE FOR LATE NIGHT, EARLY MORNING (12pm-4am)
  30. document.write('<b>Wow, thanks for choosing to visit our site over sleep!</b>')
  31.  
  32. </script>
  33. <!-- END OF SCRIPT -->
  34. <!/SCRIPT>
  35.  
  36. <!PREVIEW>
  37. <!-- START OF SCRIPT -->
  38.  
  39. <script>
  40.  
  41. var Digital=new Date()
  42. var hours=Digital.getHours()
  43.  
  44. //Configure message below to your own.
  45. if (hours>=5&&hours<=11) //MESSAGE FOR MORNING
  46. document.write('<b>Welcome to our site. Good morning visitor.</b>')
  47. else if (hours==12) //MESSAGE FOR NOON
  48. document.write('<b>It is high noon. Thanks for dropping by!</b>')
  49. else if (hours>=13&&hours<=17) //MESSAGE FOR AFTERNOON
  50. document.write('<b>Good afternoon, and thanks for visiting.</b>')
  51. else if (hours>=18&&hours<=20) //MESSAGE FOR EVENING (6pm-8pm)
  52. document.write('<b>Good evening. Hope you\'re enjoying the gentle breeze</b>')
  53. else if (hours>=21&&hours<=11) //MESSAGE FOR NIGHT (9pm-11pm)
  54. document.write('<b>Glad to see you this time of the night.</b>')
  55. else //MESSAGE FOR LATE NIGHT, EARLY MORNING (12pm-4am)
  56. document.write('<b>Wow, thanks for choosing to visit our site over sleep!</b>')
  57.  
  58. </script>
  59. <!-- END OF SCRIPT -->
  60. <!/PREVIEW>
  61.  
  62. <!RELATED>NONE<!/RELATED>
  63.